STEP 1: open your crackme and click OK, now u r in the screen before the nag screen.
open softice by pessing CTRL+D and set a BPX(breakpoint on execution) on messageboxa,
it should be like this: "bpx messageboxa".
now exit softice(CTRL+D/F5) and click "OK"...BOOM ;) we got kicked into softice...now press F12 untill u r back in the crackme and click "OK".
u should be here:
015F:00401034 CALL USER32 bla bla
015F:00401039 PUSH 00 <--this is the current line, u r here now..
now the line above the current is the call that called this nag...and we should nop it...how do we do that? type "code on" and the code of the commands should appear...
our call code is: E807000000
as u no we should change that code to 9090909090.
how do we do that? continue to the next step.
STEP 2: go to your crackme folder and right click on the crackme01.exe and choose hex edit. now in the menu, choose Edit and then Find...now make sure that hex is checked(under value)...enter the code of our call, which is E807000000 and click "Find next". now enter five times 90(to nop the call). save and exit hex workshop.